home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 77.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  490b  |  25 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. #define    ON 1
  9. #define    OFF 0
  10. #define    TRUE 7
  11.  
  12. struct    flag{
  13.     unsigned int    pflag:1;
  14.     unsigned int    sflag:1;
  15.     unsigned int    jflag:3;
  16. } type;
  17.  
  18. main()
  19. {
  20.     type.pflag = ON;
  21.     type.sflag = OFF;
  22.     type.jflag = TRUE;
  23.     printf("%d %d %d\n",type.pflag, type.sflag, type.jflag);
  24. }
  25.